home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / tasksel / tests / limited < prev    next >
Text File  |  2009-10-22  |  1KB  |  39 lines

  1. #!/bin/sh
  2. #
  3. # Selects a task by default if particular task names are listed in
  4. # tasksel/limit-tasks. Use like this:
  5. #
  6. # Test-limited: ubuntustudio-audio ubuntustudio-audio-plugins ubuntustudio-graphics ubuntustudio-video
  7. #
  8. # This will cause the task to be selected if any of those tasks are listed
  9. # in tasksel/limit-tasks, which is a reasonably good marker for a
  10. # specialised CD install. This only applies to new installs.
  11.  
  12. # If we're being used to test an enhancing task, then it's always OK to go
  13. # ahead and mark the task for installation.
  14. if [ "$TESTING_ENHANCER" ]; then
  15.     exit 0 # do not display, but do install task
  16. fi
  17.  
  18. if [ ! "$NEW_INSTALL" ]; then
  19.     exit 3 # display task, not marked for installation
  20. fi
  21.  
  22. . /usr/share/debconf/confmodule
  23.  
  24. if ! db_fget tasksel/limit-tasks seen || [ "$RET" != true ]; then
  25.     exit 3 # display task, not marked for installation
  26. fi
  27. db_get tasksel/limit-tasks
  28. LIMIT="$(echo "$RET" | sed 's/,/ /g')"
  29.  
  30. shift
  31. for task; do
  32.     for limit in $LIMIT; do
  33.         if [ "$task" = "$limit" ]; then
  34.             exit 2 # display task, marked for installation
  35.         fi
  36.     done
  37. done
  38. exit 3 # display task, not marked for installation
  39.